|
poziția meniului |
---|
Draft → Rectangle |
Ateliere |
Draft, Arch |
scurtătură |
R E |
Prezentat în versiune |
0.7 |
A se vedea, de asemenea, |
Part Box |
Instrumentul Dreptunghi creează un dreptunghi prin alegerea a două puncte. Este nevoie de linewidth and color setată pe Bara de instrumente pentru bara de meniu. Puteți adăuga opțional un șanț de 45 de grade sau un filet circular la fiecare colț al dreptunghiului și puteți împărți dreptunghiul într-o serie de rânduri și/sau coloane de dimensiuni egale.
The corners of a Draft Rectangle can be filleted (rounded) or chamfered by changing its DateFillet Radius or DateChamfer Size respectively. It is also possible to subdivide a Draft Rectangle by changing its DateColumns and/or DateRows property.
See also: Draft Tray, Draft Snap and Draft Constrain.
The single character keyboard shortcuts available in the task panel can be changed. See Draft Preferences. The shortcuts mentioned here are the default shortcuts (for version 1.0).
See also: Preferences Editor and Draft Preferences.
See also: Property editor.
A Draft Rectangle object is derived from a Part Part2DObject and inherits all its properties. It also has the following additional properties:
Draft
Area
): (read-only) specifies the area of the face of the rectangle. The value will be 0.0
if DateMake Face if false
.Length
): specifies the length of the chamfers at the corners of the rectangle.Integer
): specifies the number of equal-sized columns in which the rectangle is divided.Length
): specifies the radius of the fillets at the corners of the rectangle.Distance
): specifies the height of the rectangle.Distance
): specifies the length of the rectangle.Bool
): specifies if the rectangle makes a face or not. If it is true
a face is created, otherwise only the perimeter is considered part of the object.Integer
): specifies the number of equal-sized rows in which the rectangle is divided.Draft
Enumeration
): specifies the Draft Pattern with which to fill the face of the rectangle. This property only works if DateMake Face is true
and if VizualizareDisplay Mode is Flat Lines
.Float
): specifies the size of the Draft Pattern.File
): specifies the path of the image file to be mapped onto the face of the rectangle. Blanking this property will remove the image. The rectangle should have the same proportions as the image to avoid distortions.Instrumentul dreptunghi poate fi folosit în macros și din consola Python utilizând următoarea funcție:
To create a Draft Rectangle use the make_rectangle
method (introduced in version 0.19) of the Draft module. This method replaces the deprecated makeRectangle
method.
rectangle = make_rectangle(length, height, placement=None, face=None, support=None)
Rectangle
cu lungimea length
în direcția X și înălțimea height
în direcția Y.face
is None
, dreptunghiul este afișat ca un cadru de sârmă, altfel ca o fațetă.Exempluː
import FreeCAD as App
import Draft
doc = App.newDocument()
rectangle1 = Draft.make_rectangle(4000, 1000)
rectangle2 = Draft.make_rectangle(1000, 4000)
zaxis = App.Vector(0, 0, 1)
p3 = App.Vector(1000, 1000, 0)
place3 = App.Placement(p3, App.Rotation(zaxis, 45))
rectangle3 = Draft.make_rectangle(3500, 250, placement=place3)
doc.recompute()